'Declaration
<ConditionalAttribute("DEBUG")> Public Overloads Shared Sub LogDebug( _ ByVal message As String, _ ByVal ParamArray args() As Object _ )
[Conditional("DEBUG")] public static void LogDebug( string message, params object[] args )
[Conditional("DEBUG")] public: static void LogDebug( String^ message, ... array<Object^>^ args )
Parameters
- message
- Format string of the log message in message template format. Example:
"User {User} logged in from {Address}"
- args
- An object array that contains zero or more objects to format.